home *** CD-ROM | disk | FTP | other *** search
/ CD Fun House 8 / CD Funhouse Version 8.0 - Wayzata Technology (7013) (1993).iso / pc / pc / cards / bidding / makefile.dos < prev    next >
Makefile  |  1989-02-14  |  749b  |  23 lines

  1. # Makefile (ibm-pc/ms-dos) for
  2. #                       Bridge Bidder   Version 2.0
  3. #                       by Nathan Glasser
  4. #                       nathan@brokaw.lcs.mit.edu (internet)
  5. #                       nathan@mit-eddie.uucp (usenet)
  6. #
  7. #                       February, 1989
  8. #-----------------------------------------------------------------------------
  9. #Copyright 1988, 1989 by Nathan Glasser.
  10. #You may feel free to distribute this program in its current form.
  11. #Please do not remove this copyright information.
  12.  
  13. bidding.obj: bidding.c bidding.h
  14.         cl -c -Ox $*.c
  15.  
  16. deal.obj : deal.c bidding.h
  17.         cl -c -Ox $*.c
  18.  
  19. OBJS = bidding.obj deal.obj
  20.  
  21. bidding.exe:    $(OBJS)
  22.         link $(OBJS),bidding /stack:0x1000;
  23.